/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*
  ========================================
  Custom styles
  ========================================
*/

body {
    background: #293f50;
    color: #888;
    font: 300 16px/22px "Lato", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
===================
grid
===================
*/

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container, .grid {
    margin: 0 auto;
    width: 960px;
}

.container {
    padding-left: 30px;
    padding-right: 30px;
}

.col-1-3 {
    flex-basis: 33.33%;
}

.col-2-3 {
    flex-basis: 66.66%;
}

.col-1-3, .col-2-3 {
    display: block;
}

.grid, .col-1-3, .col-2-3 {
    padding-right: 15px;
    padding-left: 15px;
}

.primary-flex {
    display: flex;
    flex-flow: row nowrap;
}

/*
  ========================================
  Rows
  ========================================
*/

.row, .row-alt {
    min-width: 960px;
}

.row {
    background: #fff;
    padding: 66px 0 44px 0;
}

.row-alt {
    background: #cbe2c1;
    background: linear-gradient(to right, #a1d3b0, #f6f1d3);
    padding: 44px 0 22px 0;
}

/*
===================
typography
===================
*/

h1, h3, h4, h5, p {
    margin-bottom: 22px;
    color: #648880;
}

h1 {
    font-size: 36px;
    line-height: 44px;
}

h2 {
    font-size: 24px;
    line-height: 44px;
}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 18px;
}

h5 {
    color: #a9b2b9;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

strong {
    font-weight: 400;
}

cite, em {
    font-style: italic;
}

.primary-nav {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/*
  ========================================
  Leads
  ========================================
*/

.lead {
    text-align: center;
}

.lead p {
    font-size: 21px;
    line-height: 33px;
}

/*
===================
buttons
===================
*/

.btn {
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    letter-spacing: .5px;
    margin: 0;
    text-transform: uppercase;
}

.btn-alt {
    border: 1px solid #fff;
    padding: 10px 30px;
}

.btn-alt:hover {
    background: #fff;
    color: #648880;
}

.btn-default {
    border: 0;
    background: #648880;
    padding: 11px 30px;
    font-size: 14px;
}

.btn-default:hover {
    background: #77a198;
}

/*
===================
home
===================
*/

.hero {
    padding: 22px 80px 66px 80px;
    line-height: 44px;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    color: #648880;
}

.hero p {
    color: #fff;
    font-size: 24px;
    font-weight: 100;
}

.teaser img {
    border-radius: 5px;
    display: block;
    margin-bottom: 22px;
    max-width: 100%;
}

/*
===================
primary header
===================
*/

.logo {
    border-top: 4px solid #648880;
    padding: 40px 0 22px 0;
    font-size: 48px;
    line-height: 44px;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.tagline {
    margin: 66px 0 22px 0;
    text-align: right;
}

.primary-header {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

/*
  ========================================
  Primary footer
  ========================================
*/

.primary-footer small {
    font-weight: 400;
}

.primary-footer {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding-top: 44px;
    padding-bottom: 44px;
    color: #648880;
    font-size: 14px;
}

/*
  ========================================
  Navigation
  ========================================
*/

.nav {
    text-align: right;
}

.nav ul {
    display: flex;
    flex-flow: row wrap;
}

.nav li {
    margin: 0 10px;
    vertical-align: top;
}

.nav li:last-child {
    margin-right: 0;
}

/*
  ========================================
  Links
  ========================================
*/

a {
    color: #648880;
    text-decoration: none;
}

a:hover {
    color: #a9b2b9;
}

.teaser a:hover h3 {
    color: #a9b2b9;
}

p a {
    border-bottom: 1px solid #dfe2e5;
}

.primary-header a, .primary-footer a {
    color: #fff;
}

.primary-header a:hover, .primary-footer a:hover {
    color: #648880;
}

/*
  ========================================
  Speakers
  ========================================
*/

.speaker-info {
    border: 1px solid #dfe2e5;
    border-radius: 5px;
    margin-top: 88px;
    padding-bottom: 22px;
    text-align: center;
}

.speaker {
    margin-bottom: 44px;
    display: flex;
    flex-flow: row wrap;
}

.speaker:last-child {
    margin-bottom: 0;
}

.speaker-info img {
    border-radius: 50%;
    height: 130px;
    margin: -66px 0 22px 0;
    vertical-align: top;
}

/*
  ========================================
  Venue
  ========================================
*/

.venue-theatre {
    margin-bottom: 66px;
}

.venue-hotel {
    margin-bottom: 22px;
}

.venue-theatre, .venue-hotel {
    display: flex;
    flex-flow: row wrap;
}

.venue-map {
    height: 264px;
}

/*
  ========================================
  Register
  ========================================
*/

.why-attend {
    list-style: square;
    margin: 0 0 22px 30px;
}

form {
    margin-bottom: 22px;
}

input, select, textarea {
    font: 300 16px/22px "Lato", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.register-group label {
    color: #648880;
    cursor: pointer;
    font-weight: 400;
}

.register-group input, .register-group select, .register-group textarea {
    border: 1px solid #c6c9cc;
    border-radius: 5px;
    color: #888;
    display: block;
    margin: 5px 0 27px 0;
    padding: 5px 8px;
}

.register-group input, .register-group textarea {
    width: 100%;
}

.register-group select {
    height: 34px;
    width: 60px;
}

.register-group textarea {
    height: 78px;
}

/*
  ========================================
  Schedule
  ========================================
*/

table {
    width: 100%;
    margin-bottom: 44px;
}

table:last-child {
    margin-bottom: 0;
}

th, td {
    padding-bottom: 22px;
    vertical-align: top;
}

th {
    padding-right: 45px;
    width: 20%;
    text-align: right;
}

td {
    width: 40%;
}

thead {
    line-height: 44px;
}

thead th {
    font-size: 24px;
    color: #648880;
}

tbody th {
    color: #a9b2b9;
    font-size: 14px;
    font-weight: 400;
    padding-top: 22px;
    text-transform: uppercase;
}

tbody td {
    border-top: 1px solid #dfe2e5;
    padding-top: 21px;
}

tbody td:first-of-type {
    padding-right: 15px;
}

tbody td:last-of-type {
    padding-left: 15px;
}

tbody td:only-of-type {
    padding-left: 0;
    padding-right: 0;
}

table a {
    color: #888;
}

table h4 {
    margin-bottom: 0;
}

.schedule-offset {
    color: #a9b2b9;
}

/*
  ========================================
  @media ???
  ========================================
*/

@media (max-width: 960px) {
    .container, .grid {
        width: 100%;
    }
    .row, .row-alt {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 850px) {
    h3 {
        font-size: 16px;
    }
    h5 {
        font-size: 11px;
    }
    .logo {
        font-size: 30px;
    }
    .primary-nav {
        font-size: 12px;
    }
    .hero h2 {
        font-size: 28px;
        margin-bottom: 22px;
    }
    .hero p {
        font-size: 21px;
        font-weight: 300;
        line-height: 1.5;
    }
}

@media (max-width: 650px) {
    .primary-flex {
        display: flex;
        flex-flow: column nowrap;
    }
    .container {
        padding-right: 15;
        padding-left: 15;
    }
    .col-1-3, .col-2-3 {
        display: block;
        flex-basis: 100%;
    }
    .row {
        padding-top: 15px;
    }
    .row-alt {
        padding-top: 30px;
    }
    .logo {
        font-size: 42px;
        margin: 0;
    }
    .tagline {
        margin: 15px 0 15px 0;
        text-align: left;
    }
    .primary-header {
        flex-flow: column nowrap;
        padding-bottom: 15px;
    }
    .nav {
        text-align: left;
    }
    .nav li {
        margin: 0 10px 0 0;
    }
    .nav li:last-child {
        margin-right: 0;
    }
    .hero {
        padding: 0 30px 30px 30px;
    }
    .hero h2 {
        text-align: left;
    }
    .hero p {
        text-align: left;
        margin-bottom: 30px;
    }
    .btn-alt, .btn-default {
        width: 100%;
    }
    .teaser {
        margin-bottom: 30px;
    }
    .teaser:last-child {
        margin-bottom: 0;
    }
    .lead {
        text-align: left;
    }
    .lead p {
        font-size: 21px;
        line-height: 28px;
    }
    thead th {
        font-size: 16px;
        font-weight: 400;
    }
    th {
        padding-right: 15px;
    }
}